home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (C) 1995, 1996, 1999 Aladdin Enterprises. All rights reserved.
-
- This file is part of AFPL Ghostscript.
-
- AFPL Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author or
- distributor accepts any responsibility for the consequences of using it, or
- for whether it serves any particular purpose or works at all, unless he or
- she says so in writing. Refer to the Aladdin Free Public License (the
- "License") for full details.
-
- Every copy of AFPL Ghostscript must include a copy of the License, normally
- in a plain ASCII text file named PUBLIC. The License grants you the right
- to copy, modify and redistribute AFPL Ghostscript, but only under certain
- conditions described in the License. Among other things, the License
- requires that the copyright notice and this notice be preserved on all
- copies.
- */
-
- /*$Id: sisparam.h,v 1.2 2000/09/19 19:00:50 lpd Exp $ */
- /* Generic image scaling stream definitions */
- /* Requires strimpl.h */
-
- #ifndef sisparam_INCLUDED
- # define sisparam_INCLUDED
-
- /*
- * Image scaling streams all use a common set of parameters to define the
- * input and output data. That is what we define here.
- */
-
- /* Input values */
- /*typedef byte PixelIn; */ /* per BitsPerComponentIn */
- /*#define MaxValueIn 255 */ /* per MaxValueIn */
-
- /* Output values */
- /*typedef byte PixelOut; */ /* per BitsPerComponentOut */
- /*#define MaxValueOut 255 */ /* per MaxValueOut */
-
- /*
- * The 'support' S of a digital filter is the value such that the filter is
- * guaranteed to be zero for all arguments outside the range [-S..S]. We
- * limit the support so that we can put an upper bound on the time required
- * to compute an output value and on the amount of storage required for
- * X-filtered input data; this also allows us to use pre-scaled fixed-point
- * values for the weights if we wish.
- *
- * 8x8 pixels should be enough for any reasonable application....
- */
- #define LOG2_MAX_ISCALE_SUPPORT 3
- #define MAX_ISCALE_SUPPORT (1 << LOG2_MAX_ISCALE_SUPPORT)
-
- /* Define image scaling stream parameters. */
- typedef struct stream_image_scale_params_s {
- int Colors; /* >= 1 */
- int BitsPerComponentIn; /* bits per input value, 8 or 16 */
- uint MaxValueIn; /* max value of input component, */
- /* 0 < MaxValueIn < 1 << BitsPerComponentIn */
- int WidthIn, HeightIn; /* > 0 */
- int BitsPerComponentOut; /* bits per output value, 8 or 16 */
- uint MaxValueOut; /* max value of output component, */
- /* 0 < MaxValueOut < 1 << BitsPerComponentOut*/
- int WidthOut, HeightOut; /* > 0 */
- } stream_image_scale_params_t;
-
- /* Define a generic image scaling stream state. */
-
- #define stream_image_scale_state_common\
- stream_state_common;\
- stream_image_scale_params_t params
-
- typedef struct stream_image_scale_state_s {
- stream_image_scale_state_common;
- } stream_image_scale_state;
-
- #endif /* sisparam_INCLUDED */
-